home *** CD-ROM | disk | FTP | other *** search
/ Java Primer Plus / Java Primer Plus (Waite Group Proess)(1996).iso / chapter15 / Urlfun.java < prev   
Text File  |  1995-12-31  |  511b  |  26 lines

  1. import java.net.URL;
  2. import java.net.URLConnection;
  3. import java.net.MalformedURLException;
  4. import java.io.InputStream;
  5. import java.io.IOException;
  6.  
  7.  
  8. public class Urlfun {
  9.     
  10.     public static void main(String args[]) throws IOException,
  11.                         MalformedURLException {
  12.         int g;
  13.  
  14.       URL myURL = new URL("http://www.cat.syr.edu/~ptyma");
  15.       URLConnection myConn = myURL.openConnection();
  16.       InputStream datain = myConn.getInputStream();
  17.  
  18.       while ((g = datain.read()) != -1)
  19.        System.out.write(g);
  20.  
  21.       }
  22.     }
  23.  
  24.     
  25.  
  26.